home *** CD-ROM | disk | FTP | other *** search
/ HPAVC / HPAVC CD-ROM.iso / UNIX.ZIP / VMSCRACK / MAKEFILE.ZTC < prev    next >
Text File  |  1996-11-14  |  931b  |  44 lines

  1. #****************************************************************************#
  2. #                                                                            #
  3. # Make file for ZORTECH C/C++ 16 Bit                                         #
  4. #                                                                            #
  5. #****************************************************************************#
  6.  
  7. #memory model
  8.  
  9. model  = s   #small
  10.  
  11. #CPU
  12.  
  13. cpu    = 2   #286
  14.  
  15. #name the compiler
  16.  
  17. CC     = ztc
  18. CFLAGS = -A -w1 -a2 -o+time -m$(model) -$(cpu)
  19.  
  20. #linker
  21.  
  22. LINK   = blink
  23. LNKOPT =
  24.  
  25. #implicit rules
  26.  
  27. .c.obj :
  28.     $(CC) -c $(CFLAGS) $*
  29.  
  30. #executable files
  31.  
  32. all: vmsc.exe
  33.  
  34. # explicit rules
  35.  
  36. vmsc.exe : vmsc.obj getopt.obj hpwd.obj
  37.     $(LINK) $(LNKOPT) vmsc.obj+getopt.obj+hpwd.obj,vmsc.exe;
  38.  
  39. vmsc.obj : vmsc.c mytypes.h getopt.h sysuaf.h hpwd.h
  40.  
  41. getopt.obj : getopt.c
  42.  
  43. hpwd.obj : hpwd.c hpwd.h mytypes.h
  44.